home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Adobe Graphics & Publishing SDK 1996 December
/
Adobe Graphics & Publishing SDK 1996 December.iso
/
mac
/
Illustrator 6.0 SDK r1 Mac
/
AI Plugin Interface
/
AIMatchingArt.h
< prev
next >
Wrap
Text File
|
1995-12-21
|
1KB
|
92 lines
/**
AIMatchingArt.h
Copyright (c) 1995 Adobe Systems Incorporated.
All Rights Reserved
Adobe Illustrator 6.0 Matching Art Suite.
**/
#ifndef __AIMatchingArt__
#define __AIMatchingArt__
/*******************************************************************************
**
** Imports
**
**/
#include "AITypes.h"
#include "AIArt.h"
#if Macintosh
#ifdef __cplusplus
extern "C" {
#endif
#if PRAGMA_ALIGN_SUPPORTED
#pragma options align=mac68k
#endif
#if PRAGMA_IMPORT_SUPPORTED
#pragma import on
#endif
#endif
/*******************************************************************************
**
** Constants
**
**/
#define kAIMatchingArtSuite "AI Matching Art Suite"
#define kAIMatchingArtVersion 2
/*******************************************************************************
**
** Types
**
**/
typedef struct {
short type;
long whichAttr, attr;
} AIMatchingArtSpec;
/*******************************************************************************
**
** Suite
**
**/
typedef struct {
MACPASCAL FXErr (*GetSelectedArt) ( AIArtHandle ***matches, long *numMatches ); // how 'bout AIArtObject *****matches?
MACPASCAL FXErr (*GetMatchingArt) ( AIMatchingArtSpec *specs, short numSpecs, AIArtHandle ***matches, long *numMatches );
} AIMatchingArtSuite;
#if Macintosh
#if PRAGMA_IMPORT_SUPPORTED
#pragma import off
#endif
#if PRAGMA_ALIGN_SUPPORTED
#pragma options align=reset
#endif
#ifdef __cplusplus
}
#endif
#endif
#endif